home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJDEV111.ZIP / samples / compress / compress.c < prev    next >
C/C++ Source or Header  |  1993-11-28  |  43KB  |  1,560 lines

  1. /*
  2.  * Copyright (c) 1985, 1986 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * This code is derived from software contributed to Berkeley by
  6.  * James A. Woods, derived from original work by Spencer Thomas
  7.  * and Joseph Orost.
  8.  *
  9.  * Redistribution and use in source and binary forms are permitted
  10.  * provided that: (1) source distributions retain this entire copyright
  11.  * notice and comment, and (2) distributions including binaries display
  12.  * the following acknowledgement:  ``This product includes software
  13.  * developed by the University of California, Berkeley and its contributors''
  14.  * in the documentation or other materials provided with the distribution
  15.  * and in all advertising materials mentioning features or use of this
  16.  * software. Neither the name of the University nor the names of its
  17.  * contributors may be used to endorse or promote products derived
  18.  * from this software without specific prior written permission.
  19.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  20.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  21.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  22.  */
  23.  
  24. #ifndef lint
  25. char copyright[] =
  26. "@(#) Copyright (c) 1985, 1986 The Regents of the University of California.\n\
  27.  All rights reserved.\n";
  28. #endif /* not lint */
  29.  
  30. #ifndef lint
  31. static char sccsid[] = "@(#)compress.c    5.12 (Berkeley) 6/1/90";
  32. #endif /* not lint */
  33.  
  34. /* 
  35.  * Compress - data compression program 
  36.  */
  37. #define    min(a,b)    ((a>b) ? b : a)
  38.  
  39. /*
  40.  * machine variants which require cc -Dmachine:  pdp11, z8000, pcxt
  41.  */
  42.  
  43. /*
  44.  * Set USERMEM to the maximum amount of physical user memory available
  45.  * in bytes.  USERMEM is used to determine the maximum BITS that can be used
  46.  * for compression.
  47.  *
  48.  * SACREDMEM is the amount of physical memory saved for others; compress
  49.  * will hog the rest.
  50.  */
  51. #ifndef SACREDMEM
  52. #define SACREDMEM    0
  53. #endif
  54.  
  55. #ifndef USERMEM
  56. # define USERMEM     450000    /* default user memory */
  57. #endif
  58.  
  59. #ifdef interdata        /* (Perkin-Elmer) */
  60. #define SIGNED_COMPARE_SLOW    /* signed compare is slower than unsigned */
  61. #endif
  62.  
  63. #ifdef pdp11
  64. # define BITS     12    /* max bits/code for 16-bit machine */
  65. # define NO_UCHAR    /* also if "unsigned char" functions as signed char */
  66. # undef USERMEM 
  67. #endif /* pdp11 */    /* don't forget to compile with -i */
  68.  
  69. #ifdef z8000
  70. # define BITS     12
  71. # undef vax        /* weird preprocessor */
  72. # undef USERMEM 
  73. #endif /* z8000 */
  74.  
  75. #ifdef pcxt
  76. # define BITS   12
  77. # undef USERMEM
  78. #endif /* pcxt */
  79.  
  80. #ifdef USERMEM
  81. # if USERMEM >= (433484+SACREDMEM)
  82. #  define PBITS    16
  83. # else
  84. #  if USERMEM >= (229600+SACREDMEM)
  85. #   define PBITS    15
  86. #  else
  87. #   if USERMEM >= (127536+SACREDMEM)
  88. #    define PBITS    14
  89. #   else
  90. #    if USERMEM >= (73464+SACREDMEM)
  91. #     define PBITS    13
  92. #    else
  93. #     define PBITS    12
  94. #    endif
  95. #   endif
  96. #  endif
  97. # endif
  98. # undef USERMEM
  99. #endif /* USERMEM */
  100.  
  101. #ifdef PBITS        /* Preferred BITS for this memory size */
  102. # ifndef BITS
  103. #  define BITS PBITS
  104. # endif BITS
  105. #endif /* PBITS */
  106.  
  107. #if BITS == 16
  108. # define HSIZE    69001        /* 95% occupancy */
  109. #endif
  110. #if BITS == 15
  111. # define HSIZE    35023        /* 94% occupancy */
  112. #endif
  113. #if BITS == 14
  114. # define HSIZE    18013        /* 91% occupancy */
  115. #endif
  116. #if BITS == 13
  117. # define HSIZE    9001        /* 91% occupancy */
  118. #endif
  119. #if BITS <= 12
  120. # define HSIZE    5003        /* 80% occupancy */
  121. #endif
  122.  
  123. #ifdef M_XENIX            /* Stupid compiler can't handle arrays with */
  124. # if BITS == 16            /* more than 65535 bytes - so we fake it */
  125. #  define XENIX_16
  126. # else
  127. #  if BITS > 13            /* Code only handles BITS = 12, 13, or 16 */
  128. #   define BITS    13
  129. #  endif
  130. # endif
  131. #endif
  132.  
  133. /*
  134.  * a code_int must be able to hold 2**BITS values of type int, and also -1
  135.  */
  136. #if BITS > 15
  137. typedef long int    code_int;
  138. #else
  139. typedef int        code_int;
  140. #endif
  141.  
  142. #ifdef SIGNED_COMPARE_SLOW
  143. typedef unsigned long int count_int;
  144. typedef unsigned short int count_short;
  145. #else
  146. typedef long int      count_int;
  147. #endif
  148.  
  149. #ifdef NO_UCHAR
  150.  typedef char    char_type;
  151. #else
  152.  typedef    unsigned char    char_type;
  153. #endif /* UCHAR */
  154. char_type magic_header[] = { "\037\235" };    /* 1F 9D */
  155.  
  156. /* Defines for third byte of header */
  157. #define BIT_MASK    0x1f
  158. #define BLOCK_MASK    0x80
  159. /* Masks 0x40 and 0x20 are free.  I think 0x20 should mean that there is
  160.    a fourth header byte (for expansion).
  161. */
  162. #define INIT_BITS 9            /* initial number of bits/code */
  163.  
  164. /*
  165.  * compress.c - File compression ala IEEE Computer, June 1984.
  166.  *
  167.  * Authors:    Spencer W. Thomas    (decvax!utah-cs!thomas)
  168.  *        Jim McKie        (decvax!mcvax!jim)
  169.  *        Steve Davies        (decvax!vax135!petsd!peora!srd)
  170.  *        Ken Turkowski        (decvax!decwrl!turtlevax!ken)
  171.  *        James A. Woods        (decvax!ihnp4!ames!jaw)
  172.  *        Joe Orost        (decvax!vax135!petsd!joe)
  173.  *
  174.  * $Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $
  175.  * $Log:    compress.c,v $
  176.  * Revision 4.0  85/07/30  12:50:00  joe
  177.  * Removed ferror() calls in output routine on every output except first.
  178.  * Prepared for release to the world.
  179.  * 
  180.  * Revision 3.6  85/07/04  01:22:21  joe
  181.  * Remove much wasted storage by overlaying hash table with the tables
  182.  * used by decompress: tab_suffix[1<<BITS], stack[8000].  Updated USERMEM
  183.  * computations.  Fixed dump_tab() DEBUG routine.
  184.  *
  185.  * Revision 3.5  85/06/30  20:47:21  jaw
  186.  * Change hash function to use exclusive-or.  Rip out hash cache.  These
  187.  * speedups render the megamemory version defunct, for now.  Make decoder
  188.  * stack global.  Parts of the RCS trunks 2.7, 2.6, and 2.1 no longer apply.
  189.  *
  190.  * Revision 3.4  85/06/27  12:00:00  ken
  191.  * Get rid of all floating-point calculations by doing all compression ratio
  192.  * calculations in fixed point.
  193.  *
  194.  * Revision 3.3  85/06/24  21:53:24  joe
  195.  * Incorporate portability suggestion for M_XENIX.  Got rid of text on #else
  196.  * and #endif lines.  Cleaned up #ifdefs for vax and interdata.
  197.  *
  198.  * Revision 3.2  85/06/06  21:53:24  jaw
  199.  * Incorporate portability suggestions for Z8000, IBM PC/XT from mailing list.
  200.  * Default to "quiet" output (no compression statistics).
  201.  *
  202.  * Revision 3.1  85/05/12  18:56:13  jaw
  203.  * Integrate decompress() stack speedups (from early pointer mods by McKie).
  204.  * Repair multi-file USERMEM gaffe.  Unify 'force' flags to mimic semantics
  205.  * of SVR2 'pack'.  Streamline block-compress table clear logic.  Increase 
  206.  * output byte count by magic number size.
  207.  * 
  208.  * Revision 3.0   84/11/27  11:50:00  petsd!joe
  209.  * Set HSIZE depending on BITS.  Set BITS depending on USERMEM.  Unrolled
  210.  * loops in clear routines.  Added "-C" flag for 2.0 compatibility.  Used
  211.  * unsigned compares on Perkin-Elmer.  Fixed foreground check.
  212.  *
  213.  * Revision 2.7   84/11/16  19:35:39  ames!jaw
  214.  * Cache common hash codes based on input statistics; this improves
  215.  * performance for low-density raster images.  Pass on #ifdef bundle
  216.  * from Turkowski.
  217.  *
  218.  * Revision 2.6   84/11/05  19:18:21  ames!jaw
  219.  * Vary size of hash tables to reduce time for small files.
  220.  * Tune PDP-11 hash function.
  221.  *
  222.  * Revision 2.5   84/10/30  20:15:14  ames!jaw
  223.  * Junk chaining; replace with the simpler (and, on the VAX, faster)
  224.  * double hashing, discussed within.  Make block compression standard.
  225.  *
  226.  * Revision 2.4   84/10/16  11:11:11  ames!jaw
  227.  * Introduce adaptive reset for block compression, to boost the rate
  228.  * another several percent.  (See mailing list notes.)
  229.  *
  230.  * Revision 2.3   84/09/22  22:00:00  petsd!joe
  231.  * Implemented "-B" block compress.  Implemented REVERSE sorting of tab_next.
  232.  * Bug fix for last bits.  Changed fwrite to putchar loop everywhere.
  233.  *
  234.  * Revision 2.2   84/09/18  14:12:21  ames!jaw
  235.  * Fold in news changes, small machine typedef from thomas,
  236.  * #ifdef interdata from joe.
  237.  *
  238.  * Revision 2.1   84/09/10  12:34:56  ames!jaw
  239.  * Configured fast table lookup for 32-bit machines.
  240.  * This cuts user time in half for b <= FBITS, and is useful for news batching
  241.  * from VAX to PDP sites.  Also sped up decompress() [fwrite->putc] and
  242.  * added signal catcher [plus beef in writeerr()] to delete effluvia.
  243.  *
  244.  * Revision 2.0   84/08/28  22:00:00  petsd!joe
  245.  * Add check for foreground before prompting user.  Insert maxbits into
  246.  * compressed file.  Force file being uncompressed to end with ".Z".
  247.  * Added "-c" flag and "zcat".  Prepared for release.
  248.  *
  249.  * Revision 1.10  84/08/24  18:28:00  turtlevax!ken
  250.  * Will only compress regular files (no directories), added a magic number
  251.  * header (plus an undocumented -n flag to handle old files without headers),
  252.  * added -f flag to force overwriting of possibly existing destination file,
  253.  * otherwise the user is prompted for a response.  Will tack on a .Z to a
  254.  * filename if it doesn't have one when decompressing.  Will only replace
  255.  * file if it was compressed.
  256.  *
  257.  * Revision 1.9  84/08/16  17:28:00  turtlevax!ken
  258.  * Removed scanargs(), getopt(), added .Z extension and unlimited number of
  259.  * filenames to compress.  Flags may be clustered (-Ddvb12) or separated
  260.  * (-D -d -v -b 12), or combination thereof.  Modes and other status is
  261.  * copied with copystat().  -O bug for 4.2 seems to have disappeared with
  262.  * 1.8.
  263.  *
  264.  * Revision 1.8  84/08/09  23:15:00  joe
  265.  * Made it compatible with vax version, installed jim's fixes/enhancements
  266.  *
  267.  * Revision 1.6  84/08/01  22:08:00  joe
  268.  * Sped up algorithm significantly by sorting the compress chain.
  269.  *
  270.  * Revision 1.5  84/07/13  13:11:00  srd
  271.  * Added C version of vax asm routines.  Changed structure to arrays to
  272.  * save much memory.  Do unsigned compares where possible (faster on
  273.  * Perkin-Elmer)
  274.  *
  275.  * Revision 1.4  84/07/05  03:11:11  thomas
  276.  * Clean up the code a little and lint it.  (Lint complains about all
  277.  * the regs used in the asm, but I'm not going to "fix" this.)
  278.  *
  279.  * Revision 1.3  84/07/05  02:06:54  thomas
  280.  * Minor fixes.
  281.  *
  282.  * Revision 1.2  84/07/05  00:27:27  thomas
  283.  * Add variable bit length output.
  284.  *
  285.  */
  286. static char rcs_ident[] = "$Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $";
  287.  
  288. #include <stdio.h>
  289. #include <ctype.h>
  290. #include <signal.h>
  291. #include <fcntl.h>
  292. #include <sys/types.h>
  293. #include <sys/stat.h>
  294. #ifdef notdef
  295. #include <sys/ioctl.h>
  296. #endif
  297.  
  298. #define ARGVAL() (*++(*argv) || (--argc && *++argv))
  299.  
  300. int n_bits;                /* number of bits/code */
  301. int maxbits = BITS;            /* user settable max # bits/code */
  302. code_int maxcode;            /* maximum code, given n_bits */
  303. code_int maxmaxcode = 1 << BITS;    /* should NEVER generate this code */
  304. #ifdef COMPATIBLE        /* But wrong! */
  305. # define MAXCODE(n_bits)    (1 << (n_bits) - 1)
  306. #else
  307. # define MAXCODE(n_bits)    ((1 << (n_bits)) - 1)
  308. #endif /* COMPATIBLE */
  309.  
  310. #ifdef XENIX_16
  311. count_int htab0[8192];
  312. count_int htab1[8192];
  313. count_int htab2[8192];
  314. count_int htab3[8192];
  315. count_int htab4[8192];
  316. count_int htab5[8192];
  317. count_int htab6[8192];
  318. count_int htab7[8192];
  319. count_int htab8[HSIZE-65536];
  320. count_int * htab[9] = {
  321.     htab0, htab1, htab2, htab3, htab4, htab5, htab6, htab7, htab8 };
  322.  
  323. #define htabof(i)    (htab[(i) >> 13][(i) & 0x1fff])
  324. unsigned short code0tab[16384];
  325. unsigned short code1tab[16384];
  326. unsigned short code2tab[16384];
  327. unsigned short code3tab[16384];
  328. unsigned short code4tab[16384];
  329. unsigned short * codetab[5] = {
  330.     code0tab, code1tab, code2tab, code3tab, code4tab };
  331.  
  332. #define codetabof(i)    (codetab[(i) >> 14][(i) & 0x3fff])
  333.  
  334. #else    /* Normal machine */
  335.  
  336. #ifdef sel    /* gould base register braindamage */
  337. /*NOBASE*/
  338. count_int htab [HSIZE];
  339. unsigned short codetab [HSIZE];
  340. /*NOBASE*/
  341. #else
  342. count_int htab [HSIZE];
  343. unsigned short codetab [HSIZE];
  344. #endif sel
  345.  
  346. #define htabof(i)    htab[i]
  347. #define codetabof(i)    codetab[i]
  348. #endif    /* XENIX_16 */
  349. code_int hsize = HSIZE;            /* for dynamic table sizing */
  350. count_int fsize;
  351.  
  352. /*
  353.  * To save much memory, we overlay the table used by compress() with those
  354.  * used by decompress().  The tab_prefix table is the same size and type
  355.  * as the codetab.  The tab_suffix table needs 2**BITS characters.  We
  356.  * get this from the beginning of htab.  The output stack uses the rest
  357.  * of htab, and contains characters.  There is plenty of room for any
  358.  * possible stack (stack used to be 8000 characters).
  359.  */
  360.  
  361. #define tab_prefixof(i)    codetabof(i)
  362. #ifdef XENIX_16
  363. # define tab_suffixof(i)    ((char_type *)htab[(i)>>15])[(i) & 0x7fff]
  364. # define de_stack        ((char_type *)(htab2))
  365. #else    /* Normal machine */
  366. # define tab_suffixof(i)    ((char_type *)(htab))[i]
  367. # define de_stack        ((char_type *)&tab_suffixof(1<<BITS))
  368. #endif    /* XENIX_16 */
  369.  
  370. code_int free_ent = 0;            /* first unused entry */
  371. int exit_stat = 0;            /* per-file status */
  372. int perm_stat = 0;            /* permanent status */
  373.  
  374. code_int getcode();
  375.  
  376. Usage() {
  377. #ifdef DEBUG
  378. fprintf(stderr,"Usage: compress [-dDVfc] [-b maxbits] [file ...]\n");
  379. }
  380. int debug = 0;
  381. #else
  382. fprintf(stderr,"Usage: compress [-fvc] [-b maxbits] [file ...]\n");
  383. }
  384. #endif /* DEBUG */
  385. int nomagic = 0;    /* Use a 3-byte magic number header, unless old file */
  386. int zcat_flg = 0;    /* Write output on stdout, suppress messages */
  387. int precious = 1;    /* Don't unlink output file on interrupt */
  388. int quiet = 1;        /* don't tell me about compression */
  389.  
  390. /*
  391.  * block compression parameters -- after all codes are used up,
  392.  * and compression rate changes, start over.
  393.  */
  394. int block_compress = BLOCK_MASK;
  395. int clear_flg = 0;
  396. long int ratio = 0;
  397. #define CHECK_GAP 10000    /* ratio check interval */
  398. count_int checkpoint = CHECK_GAP;
  399. /*
  400.  * the next two codes should not be changed lightly, as they must not
  401.  * lie within the contiguous general code space.
  402.  */ 
  403. #define FIRST    257    /* first free entry */
  404. #define    CLEAR    256    /* table clear output code */
  405.  
  406. int force = 0;
  407. char ofname [100];
  408. #ifdef DEBUG
  409. int verbose = 0;
  410. #endif /* DEBUG */
  411. #if 0
  412. sig_t oldint;
  413. #endif
  414. int bgnd_flag=0;
  415.  
  416. int do_decomp = 0;
  417.  
  418. /*****************************************************************
  419.  * TAG( main )
  420.  *
  421.  * Algorithm from "A Technique for High Performance Data Compression",
  422.  * Terry A. Welch, IEEE Computer Vol 17, No 6 (June 1984), pp 8-19.
  423.  *
  424.  * Usage: compress [-dfvc] [-b bits] [file ...]
  425.  * Inputs:
  426.  *    -d:        If given, decompression is done instead.
  427.  *
  428.  *      -c:         Write output on stdout, don't remove original.
  429.  *
  430.  *      -b:         Parameter limits the max number of bits/code.
  431.  *
  432.  *    -f:        Forces output file to be generated, even if one already
  433.  *            exists, and even if no space is saved by compressing.
  434.  *            If -f is not used, the user will be prompted if stdin is
  435.  *            a tty, otherwise, the output file will not be overwritten.
  436.  *
  437.  *      -v:        Write compression statistics
  438.  *
  439.  *     file ...:   Files to be compressed.  If none specified, stdin
  440.  *            is used.
  441.  * Outputs:
  442.  *    file.Z:        Compressed form of file with same mode, owner, and utimes
  443.  *     or stdout   (if stdin used as input)
  444.  *
  445.  * Assumptions:
  446.  *    When filenames are given, replaces with the compressed version
  447.  *    (.Z suffix) only if the file decreases in size.
  448.  * Algorithm:
  449.  *     Modified Lempel-Ziv method (LZW).  Basically finds common
  450.  * substrings and replaces them with a variable size code.  This is
  451.  * deterministic, and can be done on the fly.  Thus, the decompression
  452.  * procedure needs no input table, but tracks the way the table was built.
  453.  */
  454.  
  455. main( argc, argv )
  456. register int argc; char **argv;
  457. {
  458.     int overwrite = 0;    /* Do not overwrite unless given -f flag */
  459.     char tempname[100];
  460.     char **filelist, **fileptr;
  461.     char *cp, *rindex(), *malloc(), *cp2;
  462.     struct stat statbuf;
  463.     void onintr(), oops();
  464.  
  465.     setmode(0,O_BINARY);
  466.     setmode(1,O_BINARY);
  467.  
  468.     /* This bg check only works for sh. */
  469. #if 0
  470.     if ( (oldint = signal ( SIGINT, SIG_IGN )) != SIG_IGN ) {
  471.     signal ( SIGINT, onintr );
  472.     signal ( SIGSEGV, oops );
  473.     }
  474.     bgnd_flag = oldint != SIG_DFL;
  475. #endif
  476. #ifdef notdef     /* This works for csh but we don't want it. */
  477.     { int tgrp;
  478.     if (bgnd_flag == 0 && ioctl(2, TIOCGPGRP, (char *)&tgrp) == 0 &&
  479.       getpgrp(0) != tgrp)
  480.     bgnd_flag = 1;
  481.     }
  482. #endif
  483.     
  484. #ifdef COMPATIBLE
  485.     nomagic = 1;    /* Original didn't have a magic number */
  486. #endif /* COMPATIBLE */
  487.  
  488.     filelist = fileptr = (char **)(malloc(argc * sizeof(*argv)));
  489.     *filelist = NULL;
  490.  
  491.     cp = rindex(argv[0], '/');
  492.     if (cp == 0)
  493.       cp = rindex(argv[0], '\\');
  494.     if(cp != 0) {
  495.     cp++;
  496.     } else {
  497.     cp = argv[0];
  498.     }
  499.     if ((cp2 = rindex(cp, '.')) != 0)
  500.       *cp2 = 0;
  501.     if(strncmp(cp, "uncompre", 8) == 0) {
  502.     do_decomp = 1;
  503.     } else if(strcmp(cp, "zcat") == 0) {
  504.     do_decomp = 1;
  505.     zcat_flg = 1;
  506.     }
  507.  
  508. #ifdef BSD4_2
  509.     /* 4.2BSD dependent - take it out if not */
  510.     setlinebuf( stderr );
  511. #endif /* BSD4_2 */
  512.  
  513.     /* Argument Processing
  514.      * All flags are optional.
  515.      * -D => debug
  516.      * -V => print Version; debug verbose
  517.      * -d => do_decomp
  518.      * -v => unquiet
  519.      * -f => force overwrite of output file
  520.      * -n => no header: useful to uncompress old files
  521.      * -b maxbits => maxbits.  If -b is specified, then maxbits MUST be
  522.      *        given also.
  523.      * -c => cat all output to stdout
  524.      * -C => generate output compatible with compress 2.0.
  525.      * if a string is left, must be an input filename.
  526.      */
  527.     for (argc--, argv++; argc > 0; argc--, argv++) {
  528.     if (**argv == '-') {    /* A flag argument */
  529.         while (*++(*argv)) {    /* Process all flags in this arg */
  530.         switch (**argv) {
  531. #ifdef DEBUG
  532.             case 'D':
  533.             debug = 1;
  534.             break;
  535.             case 'V':
  536.             verbose = 1;
  537.             version();
  538.             break;
  539. #else
  540.             case 'V':
  541.             version();
  542.             break;
  543. #endif /* DEBUG */
  544.             case 'v':
  545.             quiet = 0;
  546.             break;
  547.             case 'd':
  548.             do_decomp = 1;
  549.             break;
  550.             case 'f':
  551.             case 'F':
  552.             overwrite = 1;
  553.             force = 1;
  554.             break;
  555.             case 'n':
  556.             nomagic = 1;
  557.             break;
  558.             case 'C':
  559.             block_compress = 0;
  560.             break;
  561.             case 'b':
  562.             if (!ARGVAL()) {
  563.                 fprintf(stderr, "Missing maxbits\n");
  564.                 Usage();
  565.                 exit(1);
  566.             }
  567.             maxbits = atoi(*argv);
  568.             goto nextarg;
  569.             case 'c':
  570.             zcat_flg = 1;
  571.             break;
  572.             case 'q':
  573.             quiet = 1;
  574.             break;
  575.             default:
  576.             fprintf(stderr, "Unknown flag: '%c'; ", **argv);
  577.             Usage();
  578.             exit(1);
  579.         }
  580.         }
  581.     }
  582.     else {        /* Input file name */
  583.         *fileptr++ = *argv;    /* Build input file list */
  584.         *fileptr = NULL;
  585.         /* process nextarg; */
  586.     }
  587.     nextarg: continue;
  588.     }
  589.  
  590.     if(maxbits < INIT_BITS) maxbits = INIT_BITS;
  591.     if (maxbits > BITS) maxbits = BITS;
  592.     maxmaxcode = 1 << maxbits;
  593.  
  594.     if (*filelist != NULL) {
  595.     for (fileptr = filelist; *fileptr; fileptr++) {
  596.         exit_stat = 0;
  597.         if (do_decomp) {            /* DECOMPRESSION */
  598.         /* Check for .Z suffix */
  599.         if (strcmp(*fileptr + strlen(*fileptr) - 1, "Z") != 0) {
  600.             /* No .Z: tack one on */
  601.             strcpy(tempname, *fileptr);
  602.             strcat(tempname, "Z");
  603.             *fileptr = tempname;
  604.         }
  605.         /* Open input file */
  606.         if ((freopen(*fileptr, "rb", stdin)) == NULL) {
  607.             perror(*fileptr);
  608.             perm_stat = 1;
  609.             continue;
  610.         }
  611.         /* Check the magic number */
  612.         if (nomagic == 0) {
  613.             if ((getchar() != (magic_header[0] & 0xFF))
  614.              || (getchar() != (magic_header[1] & 0xFF))) {
  615.             fprintf(stderr, "%s: not in compressed format\n",
  616.                 *fileptr);
  617.             continue;
  618.             }
  619.             maxbits = getchar();    /* set -b from file */
  620.             block_compress = maxbits & BLOCK_MASK;
  621.             maxbits &= BIT_MASK;
  622.             maxmaxcode = 1 << maxbits;
  623.             if(maxbits > BITS) {
  624.             fprintf(stderr,
  625.             "%s: compressed with %d bits, can only handle %d bits\n",
  626.             *fileptr, maxbits, BITS);
  627.             continue;
  628.             }
  629.         }
  630.         /* Generate output filename */
  631.         strcpy(ofname, *fileptr);
  632.         ofname[strlen(*fileptr) - 1] = '\0';  /* Strip off .Z */
  633.         } else {                    /* COMPRESSION */
  634.         if (strcmp(*fileptr + strlen(*fileptr) - 1, "Z") == 0) {
  635.                 fprintf(stderr, "%s: already has Z suffix -- no change\n",
  636.                 *fileptr);
  637.             continue;
  638.         }
  639.         /* Open input file */
  640.         if ((freopen(*fileptr, "rb", stdin)) == NULL) {
  641.             perror(*fileptr);
  642.             perm_stat = 1;
  643.             continue;
  644.         }
  645.         stat ( *fileptr, &statbuf );
  646.         fsize = (long) statbuf.st_size;
  647.         /*
  648.          * tune hash table size for small files -- ad hoc,
  649.          * but the sizes match earlier #defines, which
  650.          * serve as upper bounds on the number of output codes. 
  651.          */
  652.         hsize = HSIZE;
  653.         if ( fsize < (1 << 12) )
  654.             hsize = min ( 5003, HSIZE );
  655.         else if ( fsize < (1 << 13) )
  656.             hsize = min ( 9001, HSIZE );
  657.         else if ( fsize < (1 << 14) )
  658.             hsize = min ( 18013, HSIZE );
  659.         else if ( fsize < (1 << 15) )
  660.             hsize = min ( 35023, HSIZE );
  661.         else if ( fsize < 47000 )
  662.             hsize = min ( 50021, HSIZE );
  663.  
  664.         /* Generate output filename */
  665.         strcpy(ofname, *fileptr);
  666. #ifndef BSD4_2        /* Short filenames */
  667.         if ((cp=rindex(ofname,'/')) != NULL)    cp++;
  668.         else                    cp = ofname;
  669.         if (strlen(cp) > 12) {
  670.             fprintf(stderr,"%s: filename too long to tack on Z\n",cp);
  671.             continue;
  672.         }
  673. #endif  /* BSD4_2        Long filenames allowed */
  674.         strcat(ofname, "Z");
  675.         }
  676.         /* Check for overwrite of existing file */
  677.         if (overwrite == 0 && zcat_flg == 0) {
  678.         if (stat(ofname, &statbuf) == 0) {
  679.             char response[2];
  680.             response[0] = 'n';
  681.             fprintf(stderr, "%s already exists;", ofname);
  682.             if (bgnd_flag == 0 && isatty(2)) {
  683.             fprintf(stderr, " do you wish to overwrite %s (y or n)? ",
  684.             ofname);
  685.             fflush(stderr);
  686.             read(2, response, 2);
  687.             while (response[1] != '\n') {
  688.                 if (read(2, response+1, 1) < 0) {    /* Ack! */
  689.                 perror("stderr"); break;
  690.                 }
  691.             }
  692.             }
  693.             if (response[0] != 'y') {
  694.             fprintf(stderr, "\tnot overwritten\n");
  695.             continue;
  696.             }
  697.         }
  698.         }
  699.         if(zcat_flg == 0) {        /* Open output file */
  700.         if (freopen(ofname, "wb", stdout) == NULL) {
  701.             perror(ofname);
  702.             perm_stat = 1;
  703.             continue;
  704.         }
  705.         precious = 0;
  706.         if(!quiet)
  707.             fprintf(stderr, "%s: ", *fileptr);
  708.         }
  709.  
  710.         /* Actually do the compression/decompression */
  711.         if (do_decomp == 0)    compress();
  712. #ifndef DEBUG
  713.         else            decompress();
  714. #else
  715.         else if (debug == 0)    decompress();
  716.         else            printcodes();
  717.         if (verbose)        dump_tab();
  718. #endif /* DEBUG */
  719.         if(zcat_flg == 0) {
  720.         copystat(*fileptr, ofname);    /* Copy stats */
  721.         precious = 1;
  722.         if((exit_stat == 1) || (!quiet))
  723.             putc('\n', stderr);
  724.         }
  725.     }
  726.     } else {        /* Standard input */
  727.     if (do_decomp == 0) {
  728.         compress();
  729. #ifdef DEBUG
  730.         if(verbose)        dump_tab();
  731. #endif /* DEBUG */
  732.         if(!quiet)
  733.             putc('\n', stderr);
  734.     } else {
  735.         /* Check the magic number */
  736.         if (nomagic == 0) {
  737.         if ((getchar()!=(magic_header[0] & 0xFF))
  738.          || (getchar()!=(magic_header[1] & 0xFF))) {
  739.             fprintf(stderr, "stdin: not in compressed format\n");
  740.             exit(1);
  741.         }
  742.         maxbits = getchar();    /* set -b from file */
  743.         block_compress = maxbits & BLOCK_MASK;
  744.         maxbits &= BIT_MASK;
  745.         maxmaxcode = 1 << maxbits;
  746.         fsize = 100000;        /* assume stdin large for USERMEM */
  747.         if(maxbits > BITS) {
  748.             fprintf(stderr,
  749.             "stdin: compressed with %d bits, can only handle %d bits\n",
  750.             maxbits, BITS);
  751.             exit(1);
  752.         }
  753.         }
  754. #ifndef DEBUG
  755.         decompress();
  756. #else
  757.         if (debug == 0)    decompress();
  758.         else        printcodes();
  759.         if (verbose)    dump_tab();
  760. #endif /* DEBUG */
  761.     }
  762.     }
  763.     exit(perm_stat ? perm_stat : exit_stat);
  764. }
  765.  
  766. static int offset;
  767. long int in_count = 1;            /* length of input */
  768. long int bytes_out;            /* length of compressed output */
  769. long int out_count = 0;            /* # of codes output (for debugging) */
  770.  
  771. /*
  772.  * compress stdin to stdout
  773.  *
  774.  * Algorithm:  use open addressing double hashing (no chaining) on the 
  775.  * prefix code / next character combination.  We do a variant of Knuth's
  776.  * algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
  777.  * secondary probe.  Here, the modular division first probe is gives way
  778.  * to a faster exclusive-or manipulation.  Also do block compression with
  779.  * an adaptive reset, whereby the code table is cleared when the compression
  780.  * ratio decreases, but after the table fills.  The variable-length output
  781.  * codes are re-sized at this point, and a special CLEAR code is generated
  782.  * for the decompressor.  Late addition:  construct the table according to
  783.  * file size for noticeable speed improvement on small files.  Please direct
  784.  * questions about this implementation to ames!jaw.
  785.  */
  786.  
  787. compress() {
  788.     register long fcode;
  789.     register code_int i = 0;
  790.     register int c;
  791.     register code_int ent;
  792. #ifdef XENIX_16
  793.     register code_int disp;
  794. #else    /* Normal machine */
  795.     register int disp;
  796. #endif
  797.     register code_int hsize_reg;
  798.     register int hshift;
  799.  
  800. #ifndef COMPATIBLE
  801.     if (nomagic == 0) {
  802.     putchar(magic_header[0]); putchar(magic_header[1]);
  803.     putchar((char)(maxbits | block_compress));
  804.     if(ferror(stdout))
  805.         writeerr();
  806.     }
  807. #endif /* COMPATIBLE */
  808.  
  809.     offset = 0;
  810.     bytes_out = 3;        /* includes 3-byte header mojo */
  811.     out_count = 0;
  812.     clear_flg = 0;
  813.     ratio = 0;
  814.     in_count = 1;
  815.     checkpoint = CHECK_GAP;
  816.     maxcode = MAXCODE(n_bits = INIT_BITS);
  817.     free_ent = ((block_compress) ? FIRST : 256 );
  818.  
  819.     ent = getchar ();
  820.  
  821.     hshift = 0;
  822.     for ( fcode = (long) hsize;  fcode < 65536L; fcode *= 2L )
  823.         hshift++;
  824.     hshift = 8 - hshift;        /* set hash code range bound */
  825.  
  826.     hsize_reg = hsize;
  827.     cl_hash( (count_int) hsize_reg);        /* clear hash table */
  828.  
  829. #ifdef SIGNED_COMPARE_SLOW
  830.     while ( (c = getchar()) != (unsigned) EOF ) {
  831. #else
  832.     while ( (c = getchar()) != EOF ) {
  833. #endif
  834.     in_count++;
  835.     fcode = (long) (((long) c << maxbits) + ent);
  836.      i = ((c << hshift) ^ ent);    /* xor hashing */
  837.  
  838.     if ( htabof (i) == fcode ) {
  839.         ent = codetabof (i);
  840.         continue;
  841.     } else if ( (long)htabof (i) < 0 )    /* empty slot */
  842.         goto nomatch;
  843.      disp = hsize_reg - i;        /* secondary hash (after G. Knott) */
  844.     if ( i == 0 )
  845.         disp = 1;
  846. probe:
  847.     if ( (i -= disp) < 0 )
  848.         i += hsize_reg;
  849.  
  850.     if ( htabof (i) == fcode ) {
  851.         ent = codetabof (i);
  852.         continue;
  853.     }
  854.     if ( (long)htabof (i) > 0 ) 
  855.         goto probe;
  856. nomatch:
  857.     output ( (code_int) ent );
  858.     out_count++;
  859.      ent = c;
  860. #ifdef SIGNED_COMPARE_SLOW
  861.     if ( (unsigned) free_ent < (unsigned) maxmaxcode) {
  862. #else
  863.     if ( free_ent < maxmaxcode ) {
  864. #endif
  865.          codetabof (i) = free_ent++;    /* code -> hashtable */
  866.         htabof (i) = fcode;
  867.     }
  868.     else if ( (count_int)in_count >= checkpoint && block_compress )
  869.         cl_block ();
  870.     }
  871.     /*
  872.      * Put out the final code.
  873.      */
  874.     output( (code_int)ent );
  875.     out_count++;
  876.     output( (code_int)-1 );
  877.  
  878.     /*
  879.      * Print out stats on stderr
  880.      */
  881.     if(zcat_flg == 0 && !quiet) {
  882. #ifdef DEBUG
  883.     fprintf( stderr,
  884.         "%ld chars in, %ld codes (%ld bytes) out, compression factor: ",
  885.         in_count, out_count, bytes_out );
  886.     prratio( stderr, in_count, bytes_out );
  887.     fprintf( stderr, "\n");
  888.     fprintf( stderr, "\tCompression as in compact: " );
  889.     prratio( stderr, in_count-bytes_out, in_count );
  890.     fprintf( stderr, "\n");
  891.     fprintf( stderr, "\tLargest code (of last block) was %d (%d bits)\n",
  892.         free_ent - 1, n_bits );
  893. #else /* !DEBUG */
  894.     fprintf( stderr, "Compression: " );
  895.     prratio( stderr, in_count-bytes_out, in_count );
  896. #endif /* DEBUG */
  897.     }
  898.     if(bytes_out > in_count)    /* exit(2) if no savings */
  899.     exit_stat = 2;
  900.     return;
  901. }
  902.  
  903. /*****************************************************************
  904.  * TAG( output )
  905.  *
  906.  * Output the given code.
  907.  * Inputs:
  908.  *     code:    A n_bits-bit integer.  If == -1, then EOF.  This assumes
  909.  *        that n_bits =< (long)wordsize - 1.
  910.  * Outputs:
  911.  *     Outputs code to the file.
  912.  * Assumptions:
  913.  *    Chars are 8 bits long.
  914.  * Algorithm:
  915.  *     Maintain a BITS character long buffer (so that 8 codes will
  916.  * fit in it exactly).  Use the VAX insv instruction to insert each
  917.  * code in turn.  When the buffer fills up empty it and start over.
  918.  */
  919.  
  920. static char buf[BITS];
  921.  
  922. #ifndef vax
  923. char_type lmask[9] = {0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80, 0x00};
  924. char_type rmask[9] = {0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff};
  925. #endif /* vax */
  926.  
  927. output( code )
  928. code_int  code;
  929. {
  930. #ifdef DEBUG
  931.     static int col = 0;
  932. #endif /* DEBUG */
  933.  
  934.     /*
  935.      * On the VAX, it is important to have the register declarations
  936.      * in exactly the order given, or the asm will break.
  937.      */
  938.     register int r_off = offset, bits= n_bits;
  939.     register char * bp = buf;
  940.  
  941. #ifdef DEBUG
  942.     if ( verbose )
  943.         fprintf( stderr, "%5d%c", code,
  944.             (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
  945. #endif /* DEBUG */
  946.     if ( code >= 0 ) {
  947. #ifdef vax
  948.     /* VAX DEPENDENT!! Implementation on other machines is below.
  949.      *
  950.      * Translation: Insert BITS bits from the argument starting at
  951.      * offset bits from the beginning of buf.
  952.      */
  953.     0;    /* Work around for pcc -O bug with asm and if stmt */
  954.     asm( "insv    4(ap),r11,r10,(r9)" );
  955. #else /* not a vax */
  956. /* 
  957.  * byte/bit numbering on the VAX is simulated by the following code
  958.  */
  959.     /*
  960.      * Get to the first byte.
  961.      */
  962.     bp += (r_off >> 3);
  963.     r_off &= 7;
  964.     /*
  965.      * Since code is always >= 8 bits, only need to mask the first
  966.      * hunk on the left.
  967.      */
  968.     *bp = (*bp & rmask[r_off]) | (code << r_off) & lmask[r_off];
  969.     bp++;
  970.     bits -= (8 - r_off);
  971.     code >>= 8 - r_off;
  972.     /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
  973.     if ( bits >= 8 ) {
  974.         *bp++ = code;
  975.         code >>= 8;
  976.         bits -= 8;
  977.     }
  978.     /* Last bits. */
  979.     if(bits)
  980.         *bp = code;
  981. #endif /* vax */
  982.     offset += n_bits;
  983.     if ( offset == (n_bits << 3) ) {
  984.         bp = buf;
  985.         bits = n_bits;
  986.         bytes_out += bits;
  987.         do
  988.         putchar(*bp++);
  989.         while(--bits);
  990.         offset = 0;
  991.     }
  992.  
  993.     /*
  994.      * If the next entry is going to be too big for the code size,
  995.      * then increase it, if possible.
  996.      */
  997.     if ( free_ent > maxcode || (clear_flg > 0))
  998.     {
  999.         /*
  1000.          * Write the whole buffer, because the input side won't
  1001.          * discover the size increase until after it has read it.
  1002.          */
  1003.         if ( offset > 0 ) {
  1004.         if( fwrite( buf, 1, n_bits, stdout ) != n_bits)
  1005.             writeerr();
  1006.         bytes_out += n_bits;
  1007.         }
  1008.         offset = 0;
  1009.  
  1010.         if ( clear_flg ) {
  1011.                 maxcode = MAXCODE (n_bits = INIT_BITS);
  1012.             clear_flg = 0;
  1013.         }
  1014.         else {
  1015.             n_bits++;
  1016.             if ( n_bits == maxbits )
  1017.             maxcode = maxmaxcode;
  1018.             else
  1019.             maxcode = MAXCODE(n_bits);
  1020.         }
  1021. #ifdef DEBUG
  1022.         if ( debug ) {
  1023.         fprintf( stderr, "\nChange to %d bits\n", n_bits );
  1024.         col = 0;
  1025.         }
  1026. #endif /* DEBUG */
  1027.     }
  1028.     } else {
  1029.     /*
  1030.      * At EOF, write the rest of the buffer.
  1031.      */
  1032.     if ( offset > 0 )
  1033.         fwrite( buf, 1, (offset + 7) / 8, stdout );
  1034.     bytes_out += (offset + 7) / 8;
  1035.     offset = 0;
  1036.     fflush( stdout );
  1037. #ifdef DEBUG
  1038.     if ( verbose )
  1039.         fprintf( stderr, "\n" );
  1040. #endif /* DEBUG */
  1041.     if( ferror( stdout ) )
  1042.         writeerr();
  1043.     }
  1044. }
  1045.  
  1046. /*
  1047.  * Decompress stdin to stdout.  This routine adapts to the codes in the
  1048.  * file building the "string" table on-the-fly; requiring no table to
  1049.  * be stored in the compressed file.  The tables used herein are shared
  1050.  * with those of the compress() routine.  See the definitions above.
  1051.  */
  1052.  
  1053. decompress() {
  1054.     register char_type *stackp;
  1055.     register int finchar;
  1056.     register code_int code, oldcode, incode;
  1057.  
  1058.     /*
  1059.      * As above, initialize the first 256 entries in the table.
  1060.      */
  1061.     maxcode = MAXCODE(n_bits = INIT_BITS);
  1062.     for ( code = 255; code >= 0; code-- ) {
  1063.     tab_prefixof(code) = 0;
  1064.     tab_suffixof(code) = (char_type)code;
  1065.     }
  1066.     free_ent = ((block_compress) ? FIRST : 256 );
  1067.  
  1068.     finchar = oldcode = getcode();
  1069.     if(oldcode == -1)    /* EOF already? */
  1070.     return;            /* Get out of here */
  1071.     putchar( (char)finchar );        /* first code must be 8 bits = char */
  1072.     if(ferror(stdout))        /* Crash if can't write */
  1073.     writeerr();
  1074.     stackp = de_stack;
  1075.  
  1076.     while ( (code = getcode()) > -1 ) {
  1077.  
  1078.     if ( (code == CLEAR) && block_compress ) {
  1079.         for ( code = 255; code >= 0; code-- )
  1080.         tab_prefixof(code) = 0;
  1081.         clear_flg = 1;
  1082.         free_ent = FIRST - 1;
  1083.         if ( (code = getcode ()) == -1 )    /* O, untimely death! */
  1084.         break;
  1085.     }
  1086.     incode = code;
  1087.     /*
  1088.      * Special case for KwKwK string.
  1089.      */
  1090.     if ( code >= free_ent ) {
  1091.             *stackp++ = finchar;
  1092.         code = oldcode;
  1093.     }
  1094.  
  1095.     /*
  1096.      * Generate output characters in reverse order
  1097.      */
  1098. #ifdef SIGNED_COMPARE_SLOW
  1099.     while ( ((unsigned long)code) >= ((unsigned long)256) ) {
  1100. #else
  1101.     while ( code >= 256 ) {
  1102. #endif
  1103.         *stackp++ = tab_suffixof(code);
  1104.         code = tab_prefixof(code);
  1105.     }
  1106.     *stackp++ = finchar = tab_suffixof(code);
  1107.  
  1108.     /*
  1109.      * And put them out in forward order
  1110.      */
  1111.     do
  1112.         putchar ( *--stackp );
  1113.     while ( stackp > de_stack );
  1114.  
  1115.     /*
  1116.      * Generate the new entry.
  1117.      */
  1118.     if ( (code=free_ent) < maxmaxcode ) {
  1119.         tab_prefixof(code) = (unsigned short)oldcode;
  1120.         tab_suffixof(code) = finchar;
  1121.         free_ent = code+1;
  1122.     } 
  1123.     /*
  1124.      * Remember previous code.
  1125.      */
  1126.     oldcode = incode;
  1127.     }
  1128.     fflush( stdout );
  1129.     if(ferror(stdout))
  1130.     writeerr();
  1131. }
  1132.  
  1133. /*****************************************************************
  1134.  * TAG( getcode )
  1135.  *
  1136.  * Read one code from the standard input.  If EOF, return -1.
  1137.  * Inputs:
  1138.  *     stdin
  1139.  * Outputs:
  1140.  *     code or -1 is returned.
  1141.  */
  1142.  
  1143. code_int
  1144. getcode() {
  1145.     /*
  1146.      * On the VAX, it is important to have the register declarations
  1147.      * in exactly the order given, or the asm will break.
  1148.      */
  1149.     register code_int code;
  1150.     static int offset = 0, size = 0;
  1151.     static char_type buf[BITS];
  1152.     register int r_off, bits;
  1153.     register char_type *bp = buf;
  1154.  
  1155.     if ( clear_flg > 0 || offset >= size || free_ent > maxcode ) {
  1156.     /*
  1157.      * If the next entry will be too big for the current code
  1158.      * size, then we must increase the size.  This implies reading
  1159.      * a new buffer full, too.
  1160.      */
  1161.     if ( free_ent > maxcode ) {
  1162.         n_bits++;
  1163.         if ( n_bits == maxbits )
  1164.         maxcode = maxmaxcode;    /* won't get any bigger now */
  1165.         else
  1166.         maxcode = MAXCODE(n_bits);
  1167.     }
  1168.     if ( clear_flg > 0) {
  1169.             maxcode = MAXCODE (n_bits = INIT_BITS);
  1170.         clear_flg = 0;
  1171.     }
  1172.     size = fread( buf, 1, n_bits, stdin );
  1173.     if ( size <= 0 )
  1174.         return -1;            /* end of file */
  1175.     offset = 0;
  1176.     /* Round size down to integral number of codes */
  1177.     size = (size << 3) - (n_bits - 1);
  1178.     }
  1179.     r_off = offset;
  1180.     bits = n_bits;
  1181. #ifdef vax
  1182.     asm( "extzv   r10,r9,(r8),r11" );
  1183. #else /* not a vax */
  1184.     /*
  1185.      * Get to the first byte.
  1186.      */
  1187.     bp += (r_off >> 3);
  1188.     r_off &= 7;
  1189.     /* Get first part (low order bits) */
  1190. #ifdef NO_UCHAR
  1191.     code = ((*bp++ >> r_off) & rmask[8 - r_off]) & 0xff;
  1192. #else
  1193.     code = (*bp++ >> r_off);
  1194. #endif /* NO_UCHAR */
  1195.     bits -= (8 - r_off);
  1196.     r_off = 8 - r_off;        /* now, offset into code word */
  1197.     /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
  1198.     if ( bits >= 8 ) {
  1199. #ifdef NO_UCHAR
  1200.         code |= (*bp++ & 0xff) << r_off;
  1201. #else
  1202.         code |= *bp++ << r_off;
  1203. #endif /* NO_UCHAR */
  1204.         r_off += 8;
  1205.         bits -= 8;
  1206.     }
  1207.     /* high order bits. */
  1208.     code |= (*bp & rmask[bits]) << r_off;
  1209. #endif /* vax */
  1210.     offset += n_bits;
  1211.  
  1212.     return code;
  1213. }
  1214.  
  1215. #ifndef __GO32__
  1216. char *
  1217. rindex(s, c)        /* For those who don't have it in libc.a */
  1218. register char *s, c;
  1219. {
  1220.     char *p;
  1221.     for (p = NULL; *s; s++)
  1222.         if (*s == c)
  1223.         p = s;
  1224.     return(p);
  1225. }
  1226. #endif
  1227.  
  1228. #ifdef DEBUG
  1229. printcodes()
  1230. {
  1231.     /*
  1232.      * Just print out codes from input file.  For debugging.
  1233.      */
  1234.     code_int code;
  1235.     int col = 0, bits;
  1236.  
  1237.     bits = n_bits = INIT_BITS;
  1238.     maxcode = MAXCODE(n_bits);
  1239.     free_ent = ((block_compress) ? FIRST : 256 );
  1240.     while ( ( code = getcode() ) >= 0 ) {
  1241.     if ( (code == CLEAR) && block_compress ) {
  1242.            free_ent = FIRST - 1;
  1243.            clear_flg = 1;
  1244.     }
  1245.     else if ( free_ent < maxmaxcode )
  1246.         free_ent++;
  1247.     if ( bits != n_bits ) {
  1248.         fprintf(stderr, "\nChange to %d bits\n", n_bits );
  1249.         bits = n_bits;
  1250.         col = 0;
  1251.     }
  1252.     fprintf(stderr, "%5d%c", code, (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
  1253.     }
  1254.     putc( '\n', stderr );
  1255.     exit( 0 );
  1256. }
  1257.  
  1258. code_int sorttab[1<<BITS];    /* sorted pointers into htab */
  1259.  
  1260. dump_tab()    /* dump string table */
  1261. {
  1262.     register int i, first;
  1263.     register ent;
  1264. #define STACK_SIZE    15000
  1265.     int stack_top = STACK_SIZE;
  1266.     register c;
  1267.  
  1268.     if(do_decomp == 0) {    /* compressing */
  1269.     register int flag = 1;
  1270.  
  1271.     for(i=0; i<hsize; i++) {    /* build sort pointers */
  1272.         if((long)htabof(i) >= 0) {
  1273.             sorttab[codetabof(i)] = i;
  1274.         }
  1275.     }
  1276.     first = block_compress ? FIRST : 256;
  1277.     for(i = first; i < free_ent; i++) {
  1278.         fprintf(stderr, "%5d: \"", i);
  1279.         de_stack[--stack_top] = '\n';
  1280.         de_stack[--stack_top] = '"';
  1281.         stack_top = in_stack((htabof(sorttab[i])>>maxbits)&0xff, 
  1282.                                      stack_top);
  1283.         for(ent=htabof(sorttab[i]) & ((1<<maxbits)-1);
  1284.             ent > 256;
  1285.             ent=htabof(sorttab[ent]) & ((1<<maxbits)-1)) {
  1286.             stack_top = in_stack(htabof(sorttab[ent]) >> maxbits,
  1287.                         stack_top);
  1288.         }
  1289.         stack_top = in_stack(ent, stack_top);
  1290.         fwrite( &de_stack[stack_top], 1, STACK_SIZE-stack_top, stderr);
  1291.            stack_top = STACK_SIZE;
  1292.     }
  1293.    } else if(!debug) {    /* decompressing */
  1294.  
  1295.        for ( i = 0; i < free_ent; i++ ) {
  1296.        ent = i;
  1297.        c = tab_suffixof(ent);
  1298.        if ( isascii(c) && isprint(c) )
  1299.            fprintf( stderr, "%5d: %5d/'%c'  \"",
  1300.                ent, tab_prefixof(ent), c );
  1301.        else
  1302.            fprintf( stderr, "%5d: %5d/\\%03o \"",
  1303.                ent, tab_prefixof(ent), c );
  1304.        de_stack[--stack_top] = '\n';
  1305.        de_stack[--stack_top] = '"';
  1306.        for ( ; ent != NULL;
  1307.            ent = (ent >= FIRST ? tab_prefixof(ent) : NULL) ) {
  1308.            stack_top = in_stack(tab_suffixof(ent), stack_top);
  1309.        }
  1310.        fwrite( &de_stack[stack_top], 1, STACK_SIZE - stack_top, stderr );
  1311.        stack_top = STACK_SIZE;
  1312.        }
  1313.     }
  1314. }
  1315.  
  1316. int
  1317. in_stack(c, stack_top)
  1318.     register c, stack_top;
  1319. {
  1320.     if ( (isascii(c) && isprint(c) && c != '\\') || c == ' ' ) {
  1321.         de_stack[--stack_top] = c;
  1322.     } else {
  1323.         switch( c ) {
  1324.         case '\n': de_stack[--stack_top] = 'n'; break;
  1325.         case '\t': de_stack[--stack_top] = 't'; break;
  1326.         case '\b': de_stack[--stack_top] = 'b'; break;
  1327.         case '\f': de_stack[--stack_top] = 'f'; break;
  1328.         case '\r': de_stack[--stack_top] = 'r'; break;
  1329.         case '\\': de_stack[--stack_top] = '\\'; break;
  1330.         default:
  1331.          de_stack[--stack_top] = '0' + c % 8;
  1332.          de_stack[--stack_top] = '0' + (c / 8) % 8;
  1333.          de_stack[--stack_top] = '0' + c / 64;
  1334.          break;
  1335.         }
  1336.         de_stack[--stack_top] = '\\';
  1337.     }
  1338.     return stack_top;
  1339. }
  1340. #endif /* DEBUG */
  1341.  
  1342. writeerr()
  1343. {
  1344.     perror ( ofname );
  1345.     unlink ( ofname );
  1346.     exit ( 1 );
  1347. }
  1348.  
  1349. copystat(ifname, ofname)
  1350. char *ifname, *ofname;
  1351. {
  1352.     struct stat statbuf;
  1353.     int mode;
  1354.     time_t timep[2];
  1355.  
  1356.     fclose(stdout);
  1357.     if (stat(ifname, &statbuf)) {        /* Get stat on input file */
  1358.     perror(ifname);
  1359.     return;
  1360.     }
  1361.     if ((statbuf.st_mode & S_IFMT/*0170000*/) != S_IFREG/*0100000*/) {
  1362.     if(quiet)
  1363.             fprintf(stderr, "%s: ", ifname);
  1364.     fprintf(stderr, " -- not a regular file: unchanged");
  1365.     exit_stat = 1;
  1366.     perm_stat = 1;
  1367.     } else if (statbuf.st_nlink > 1) {
  1368.     if(quiet)
  1369.             fprintf(stderr, "%s: ", ifname);
  1370.     fprintf(stderr, " -- has %d other links: unchanged",
  1371.         statbuf.st_nlink - 1);
  1372.     exit_stat = 1;
  1373.     perm_stat = 1;
  1374.     } else if (exit_stat == 2 && (!force)) { /* No compression: remove file.Z */
  1375.     if(!quiet)
  1376.         fprintf(stderr, " -- file unchanged");
  1377.     } else {            /* ***** Successful Compression ***** */
  1378.     exit_stat = 0;
  1379.     mode = statbuf.st_mode & 07777;
  1380. #if 0
  1381.     if (chmod(ofname, mode))        /* Copy modes */
  1382.         perror(ofname);
  1383. #endif
  1384.     chown(ofname, statbuf.st_uid, statbuf.st_gid);    /* Copy ownership */
  1385.     timep[0] = statbuf.st_atime;
  1386.     timep[1] = statbuf.st_mtime;
  1387.     utime(ofname, timep);    /* Update last accessed and modified times */
  1388. #if 0
  1389.     if (unlink(ifname))    /* Remove input file */
  1390.         perror(ifname);
  1391. #else
  1392.     unlink(ifname);
  1393. #endif
  1394.     if(!quiet)
  1395.         fprintf(stderr, " -- replaced with %s", ofname);
  1396.     return;        /* Successful return */
  1397.     }
  1398.  
  1399.     /* Unsuccessful return -- one of the tests failed */
  1400.     if (unlink(ofname))
  1401.     perror(ofname);
  1402. }
  1403.  
  1404. void
  1405. onintr ( )
  1406. {
  1407.     if (!precious)
  1408.     unlink ( ofname );
  1409.     exit ( 1 );
  1410. }
  1411.  
  1412. void
  1413. oops ( )    /* wild pointer -- assume bad input */
  1414. {
  1415.     if ( do_decomp ) 
  1416.         fprintf ( stderr, "uncompress: corrupt input\n" );
  1417.     unlink ( ofname );
  1418.     exit ( 1 );
  1419. }
  1420.  
  1421. cl_block ()        /* table clear for block compress */
  1422. {
  1423.     register long int rat;
  1424.  
  1425.     checkpoint = in_count + CHECK_GAP;
  1426. #ifdef DEBUG
  1427.     if ( debug ) {
  1428.             fprintf ( stderr, "count: %ld, ratio: ", in_count );
  1429.              prratio ( stderr, in_count, bytes_out );
  1430.         fprintf ( stderr, "\n");
  1431.     }
  1432. #endif /* DEBUG */
  1433.  
  1434.     if(in_count > 0x007fffff) {    /* shift will overflow */
  1435.     rat = bytes_out >> 8;
  1436.     if(rat == 0) {        /* Don't divide by zero */
  1437.         rat = 0x7fffffff;
  1438.     } else {
  1439.         rat = in_count / rat;
  1440.     }
  1441.     } else {
  1442.     rat = (in_count << 8) / bytes_out;    /* 8 fractional bits */
  1443.     }
  1444.     if ( rat > ratio ) {
  1445.     ratio = rat;
  1446.     } else {
  1447.     ratio = 0;
  1448. #ifdef DEBUG
  1449.     if(verbose)
  1450.         dump_tab();    /* dump string table */
  1451. #endif
  1452.      cl_hash ( (count_int) hsize );
  1453.     free_ent = FIRST;
  1454.     clear_flg = 1;
  1455.     output ( (code_int) CLEAR );
  1456. #ifdef DEBUG
  1457.     if(debug)
  1458.             fprintf ( stderr, "clear\n" );
  1459. #endif /* DEBUG */
  1460.     }
  1461. }
  1462.  
  1463. cl_hash(hsize)        /* reset code table */
  1464.     register count_int hsize;
  1465. {
  1466. #ifndef XENIX_16    /* Normal machine */
  1467.     register count_int *htab_p = htab+hsize;
  1468. #else
  1469.     register j;
  1470.     register long k = hsize;
  1471.     register count_int *htab_p;
  1472. #endif
  1473.     register long i;
  1474.     register long m1 = -1;
  1475.  
  1476. #ifdef XENIX_16
  1477.     for(j=0; j<=8 && k>=0; j++,k-=8192) {
  1478.     i = 8192;
  1479.     if(k < 8192) {
  1480.         i = k;
  1481.     }
  1482.     htab_p = &(htab[j][i]);
  1483.     i -= 16;
  1484.     if(i > 0) {
  1485. #else
  1486.     i = hsize - 16;
  1487. #endif
  1488.      do {                /* might use Sys V memset(3) here */
  1489.         *(htab_p-16) = m1;
  1490.         *(htab_p-15) = m1;
  1491.         *(htab_p-14) = m1;
  1492.         *(htab_p-13) = m1;
  1493.         *(htab_p-12) = m1;
  1494.         *(htab_p-11) = m1;
  1495.         *(htab_p-10) = m1;
  1496.         *(htab_p-9) = m1;
  1497.         *(htab_p-8) = m1;
  1498.         *(htab_p-7) = m1;
  1499.         *(htab_p-6) = m1;
  1500.         *(htab_p-5) = m1;
  1501.         *(htab_p-4) = m1;
  1502.         *(htab_p-3) = m1;
  1503.         *(htab_p-2) = m1;
  1504.         *(htab_p-1) = m1;
  1505.         htab_p -= 16;
  1506.     } while ((i -= 16) >= 0);
  1507. #ifdef XENIX_16
  1508.     }
  1509.     }
  1510. #endif
  1511.         for ( i += 16; i > 0; i-- )
  1512.         *--htab_p = m1;
  1513. }
  1514.  
  1515. prratio(stream, num, den)
  1516. FILE *stream;
  1517. long int num, den;
  1518. {
  1519.     register int q;            /* Doesn't need to be long */
  1520.  
  1521.     if(num > 214748L) {        /* 2147483647/10000 */
  1522.         q = num / (den / 10000L);
  1523.     } else {
  1524.         q = 10000L * num / den;        /* Long calculations, though */
  1525.     }
  1526.     if (q < 0) {
  1527.         putc('-', stream);
  1528.         q = -q;
  1529.     }
  1530.     fprintf(stream, "%d.%02d%%", q / 100, q % 100);
  1531. }
  1532.  
  1533. version()
  1534. {
  1535.     fprintf(stderr, "%s, Berkeley 5.12 6/1/90\n", rcs_ident);
  1536.     fprintf(stderr, "Options: ");
  1537. #ifdef vax
  1538.     fprintf(stderr, "vax, ");
  1539. #endif
  1540. #ifdef NO_UCHAR
  1541.     fprintf(stderr, "NO_UCHAR, ");
  1542. #endif
  1543. #ifdef SIGNED_COMPARE_SLOW
  1544.     fprintf(stderr, "SIGNED_COMPARE_SLOW, ");
  1545. #endif
  1546. #ifdef XENIX_16
  1547.     fprintf(stderr, "XENIX_16, ");
  1548. #endif
  1549. #ifdef COMPATIBLE
  1550.     fprintf(stderr, "COMPATIBLE, ");
  1551. #endif
  1552. #ifdef DEBUG
  1553.     fprintf(stderr, "DEBUG, ");
  1554. #endif
  1555. #ifdef BSD4_2
  1556.     fprintf(stderr, "BSD4_2, ");
  1557. #endif
  1558.     fprintf(stderr, "BITS = %d\n", BITS);
  1559. }
  1560.